This repository has no description
299 B
11 lines
1import ProfileContainer from '@/features/profile/containers/profileContainer/ProfileContainer';
2
3interface Props {
4 params: Promise<{ handle: string }>;
5}
6
7export default async function Page(props: Props) {
8 const { handle } = await props.params;
9
10 return <ProfileContainer handle={handle} />;
11}